home *** CD-ROM | disk | FTP | other *** search
Text File | 1990-02-26 | 1.2 KB | 57 lines | [TEXT/TCEd] |
- #
- # Rez.ldf
- #
- # Copyright © 1989 Blayne Puklich. All Rights Reserved.
- #
- # Written by: Blayne Puklich.
- #
- # Description
- # MPW Rez language definition.
- #
- # Created: Tuesday, August 29, 1989
- #
-
- LANGUAGE Rez
-
- DESCRIPTION "MPW Rez Resource Language written by Blayne Puklich" \
- "Tuesday, August 29, 1989"
-
- EXTENSION .r
-
- COMMENT /* */ 60
- COMMENT ONELINE // '¬'
-
- BRACKET { }
- BRACKET ( )
- BRACKET [ ]
-
- QUOTE ' '
- QUOTE " "
-
- ESCAPE '\'
-
- # Key words
- RESERVED array change data delete fill include read resource switch type
- # Resource modifiers
- RESERVED appHeap sysHeap \
- nonPurgeable purgeable \
- unLocked locked \
- unProtected protected \
- nonPreload preLoad \
- unChanged changed
- # Base types
- RESERVED bitstring boolean byte char cstring integer longint point pstring rect \
- string wstring
- # Base type modifiers
- RESERVED align binary decimal hex literal octal unsigned
-
- TEMPLATES
- Array -> 'array ' ^ ' {' [1] ^ ';' [-1] '};'
- Change -> "change '" ^ "' to '" ^ "';"
- Data -> "data '" ^ "' (" ^ ') {' [1] ^ [-1] '};'
- Delete -> "delete '" ^ "';"
- Include -> 'include "' ^ '";'
- Resource -> "resource '" ^ "' (" ^ ") {" [1] ^ [-1] "};"
- Switch -> 'switch {' [0] 'case ' ^ ':' [1] ^ [-1] '};'
- Type -> "type '" ^ "' {" [1] ^ [-1] '};'
-